summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 7c3e30f0b7cc51f5123f0a0e44a2ca9df3236935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "number.h"
#include "packedintarray.h"
#include "lexer.h"
#include "token.h"
#include "parser.h"
#include "options.h"
#include <math.h>
#include <sys/time.h>

#include <bu/sio.h>
#include <bu/streamstack.h>
using namespace Bu;

int main( int argc, char *argv[] )
{
    try
    {
        Options opt( argc, argv );

        println("CliC - 0.07");
        println("Try \\exit, \\help, \\scale, and \\radix commands.");
        println("");

        Lexer lex( sioRaw );
        lex.setScale( opt.getScale() );
        lex.setRadix( opt.getRadix() );
        Parser parser( lex, sioRaw );
        parser.parse();
    }
    catch( std::exception &e )
    {
        Bu::println("Error: %1").arg( e.what() );
    }

    return 0;
}